home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / fix402s.zip / FIXUTILS.BAT < prev    next >
DOS Batch File  |  1994-04-01  |  2KB  |  27 lines

  1. @echo off
  2. echo.
  3. echo                          FIX BATCH UTILITIES
  4. echo Batch utilities are provided to extend the usefulness of the FIX program
  5. echo by performing selected pre-specified editing functions on ASCII text files.
  6. echo These also serve as models for the user's development of batch files or key
  7. echo macros for his/her common editing tasks.  Summary of each utility:
  8. echo.
  9. echo   X2LINES   - Doubles spacing of each line of text.
  10. echo   D2LINES   - Changes each double spaced line to a single spaced line.
  11. echo   X2TABS    - Replaces each (horizontal) tab with 2 tabs.
  12. echo   D2TABS    - Replaces each adjacent pair of tabs with a single tab.
  13. echo   INDENT    - Inserts 1 tab at the beginning of each line (except 1st line).
  14. echo   UPINDENT* - Adds 1 more indentation tab to the beginning of each line
  15. echo               (except 1st line) that is already indented.
  16. echo   DEINDENT* - Deletes 1 indentation tab from the beginning of each indented
  17. echo               line (except 1st line).
  18. echo   SPACE2*   - Reduces each contiguous sequence of spaces to 2 spaces
  19. echo               (an iterative application which acts on feedback from FIX).
  20. echo   SHIFTBRL* - Shifts braces ({),(}) in C source file(s) to the left 1 tab.
  21. echo   SHIFTBRR* - Shifts braces ({),(}) in C source file(s) to the right 1 tab.
  22. echo   GREPC*    - Counts strings, syntax/result similar to Unix "grep -c".
  23. echo                                         [*] With Registered or Licensed FIX.
  24. echo The common command line syntax for these utilities (except for grepc) is:
  25. echo        UTILNAME [d:][path]FILENAME  [d:][path][outfile]
  26. echo For utility-specific help, enter the utility name with no arguments.
  27.